From a75def4139bb25ec693d0575af28bb6443daa49d Mon Sep 17 00:00:00 2001 From: "kaf24@labyrinth.cl.cam.ac.uk" Date: Fri, 21 Feb 2003 15:30:00 +0000 Subject: [PATCH] bitkeeper revision 1.87 (3e5645f8WsWRq4fdeFv8hAeaMB9cAA) apic.c: Reduce error tracing to debug tracing in timer code. --- xen-2.4.16/arch/i386/apic.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/xen-2.4.16/arch/i386/apic.c b/xen-2.4.16/arch/i386/apic.c index 691240ad61..b967934e3c 100644 --- a/xen-2.4.16/arch/i386/apic.c +++ b/xen-2.4.16/arch/i386/apic.c @@ -664,8 +664,9 @@ int reprogram_ac_timer(s_time_t timeout) if (expire <= 0) { - printk("APICT[%02d] Timeout in the past 0x%08X%08X > 0x%08X%08X\n", - cpu, (u32)(now>>32), (u32)now, (u32)(timeout>>32),(u32)timeout); + TRC(printk("APICT[%02d] Timeout in the past 0x%08X%08X > 0x%08X%08X\n", + cpu, (u32)(now>>32), (u32)now, + (u32)(timeout>>32),(u32)timeout)); return 0; /* timeout value in the past */ } @@ -673,11 +674,12 @@ int reprogram_ac_timer(s_time_t timeout) apic_tmict = (((u64)bus_scale) * expire)>>18; if (apic_tmict >= 0xffffffff) { + /* This is bad! */ printk("APICT[%02d] Timeout value too large\n", cpu); apic_tmict = 0xffffffff; } if (apic_tmict == 0) { - printk("APICT[%02d] timeout value too small\n", cpu); + TRC(printk("APICT[%02d] timeout value too small\n", cpu)); return 0; } -- 2.30.2